home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / muds / lpmud312.tar / lpmud312 / wiz_list.h < prev   
C/C++ Source or Header  |  1991-10-31  |  499b  |  22 lines

  1. struct wiz_list {
  2.     char *name;
  3.     int length;
  4.     struct wiz_list *next;
  5.     int score;
  6.     int cost;
  7.     int heart_beats;
  8.     int total_worth;
  9.     int size_array;        /* Total size of this wizards arrays. */
  10.     /*
  11.      * The following values are all used to store the last error
  12.      * message.
  13.      */
  14.     char *file_name;
  15.     char *error_message;
  16.     int line_number;
  17. };
  18.  
  19. extern struct wiz_list *add_name PROT((char *));
  20. struct value;
  21. extern void save_wiz_file(), load_wiz_file(), wiz_decay();
  22.